home *** CD-ROM | disk | FTP | other *** search
/ MacGames Sampler / PHT MacGames Bundle.iso / MacSource Folder / Samples from the CD / C and C++ / POSIX / ThinkCPosix / chmod.c < prev    next >
Text File  |  1992-09-14  |  172b  |  16 lines

  1. /* $Id: $ */
  2.  
  3. /*
  4.  * For the moment this function does nothing,
  5.  * and reports success!
  6.  */
  7.  
  8. #include "ThinkCPosix.h"
  9.  
  10. int chmod(char *path, mode_t mode)
  11. {
  12.      
  13.     return 0;
  14. }
  15.  
  16.